func math/big.shlVU

6 uses

	math/big (current package)
		arith_decl.go#L25: func shlVU(z, x []Word, s uint) (c Word)
		float.go#L589: 		c := shlVU(m, m, s)
		nat.go#L516: 	t[2*n-1] = shlVU(t[1:2*n-1], t[1:2*n-1], 1) // double the j < i products
		nat.go#L732: 	z[n] = shlVU(z[n-m:n], x, s%_W)
		natdiv.go#L603: 	shlVU(v, vIn, shift)
		natdiv.go#L605: 	u[len(uIn)] = shlVU(u[0:len(uIn)], uIn, shift)